home *** CD-ROM | disk | FTP | other *** search
/ cyber.net interactivo 3 / inter@ivo 1996-04.iso / cybint3 / bin / lou.dxr / 00012.ls < prev    next >
Encoding:
Text File  |  1996-03-22  |  435 b   |  25 lines

  1. on exitFrame
  2.   if rollOver(2) then
  3.     if the visible of sprite 2 = 0 then
  4.       if soundBusy(2) = 0 then
  5.         sound playFile 2, "..\som\gato.wav"
  6.       end if
  7.       set the visible of sprite 2 to 1
  8.     end if
  9.     if the frame = 17 then
  10.       go(11)
  11.     end if
  12.   else
  13.     sound stop 2
  14.     set the visible of sprite 2 to 0
  15.     go(the frame)
  16.   end if
  17. end
  18.  
  19. on mouseUp
  20.   if rollOver(2) then
  21.     sound stop 2
  22.     go("Ecr3")
  23.   end if
  24. end
  25.